參考資料:
Donut-shaped C code that generates a 3D spinning donut
如題,當初會來撰寫這篇參考筆記,只是因為在找到了 video-to-ascii 這個 Python 的套件的時候,剛好在 YT 上看到了,可以在終端機(Terminal)上產生一個 3D 旋轉甜甜圈的程式的介紹影片,於是乎,就在自己實際操作過之後,順便把自己的實際操作過程撰寫成筆記,然後也順便錄了,在 Ubuntu 上執行這個程式碼的實測效果的影片,並把在 YT 上搜尋到的其他類似的影片教學,整理並放在了這篇參考筆記的最後面,有興趣的人,可以拉到最底下看看w。
特此撰寫本篇文章作為紀錄文件,用以方便後續有需要的時候,可以快速的重複查閱,雖然後面比較沒有什麼機會再用到,但也算是一個還不錯的經驗。
可以在命令列產生一個 3D 旋轉的甜甜圈。
donut_deobfuscated.c
#include <stdio.h>
#include <math.h>
#include <string.h>
#define HIDE_CURSOR() printf("\033[?25l")
int main() {
float A = 0, B = 0;
float i, j;
int k;
float z[1760];
char b[1760];
HIDE_CURSOR();
printf("\x1b[2J");
for(;;) {
memset(b,32,1760);
memset(z,0,7040);
for(j=0; j < 6.28; j += 0.07) {
for(i=0; i < 6.28; i += 0.02) {
float c = sin(i);
float d = cos(j);
float e = sin(A);
float f = sin(j);
float g = cos(A);
float h = d + 2;
float D = 1 / (c * h * e + f * g + 5);
float l = cos(i);
float m = cos(B);
float n = sin(B);
float t = c * h * g - f * e;
int x = 40 + 30 * D * (l * h * m - t * n);
int y= 12 + 15 * D * (l * h * n + t * m);
int o = x + 80 * y;
int N = 8 * ((f * e - c * d * g) * m - c * d * e - f * g - l * d * n);
if(22 > y && y > 0 && x > 0 && 80 > x && D > z[o]) {
z[o] = D;
b[o] = ".,-~:;=!*#$@"[N > 0 ? N : 0];
}
}
}
HIDE_CURSOR();
printf("\x1b[H");
for(k = 0; k < 1761; k++) {
putchar(k % 80 ? b[k] : 10);
A += 0.00004;
B += 0.00002;
}
//usleep(30000);
}
return 0;
}
P.S. 在 Windows 10 上執行會比較卡,原因未知,建議用 linux 執行會比較順。
可以用 cmder,執行指令:
gcc -o donut donut_deobfuscated.c -lm && donut.exe
執行指令:
gcc -o donut donut_deobfuscated.c -lm && ./donut
Python/Pygame 3D ASCII Spinning Donut Tutorial:
Python/Pygame 3D ASCII Spinning Earth Tutorial: